home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 424_02 / ED-157 / unistd.h < prev    next >
C/C++ Source or Header  |  1994-03-28  |  476b  |  35 lines

  1. #ifdef _AIX
  2. #include <sys/stat.h>
  3. #include <fcntl.h>
  4. #endif
  5.  
  6. #ifdef VMS
  7. #include <unixio.h>
  8. #endif
  9.  
  10. #ifdef sparc
  11. #include <unistd.h>
  12. #include <fcntl.h>
  13. #endif
  14.  
  15. #ifdef __osf__
  16. #include <unistd.h>
  17. #endif
  18.  
  19. #ifdef NeXT
  20. #include <libc.h>
  21. #endif
  22.  
  23. #ifdef GNUOS2    /* don't change the order */
  24. #include <unistd.h>
  25. #else
  26. #ifdef WIN32
  27. #include <io.h>            /* for open, read, write, close */
  28. #include <direct.h>        /* for chdir, etc */
  29. #else
  30. #ifdef GNUDOS
  31. #include <std.h>
  32. #endif
  33. #endif
  34. #endif
  35.